home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_45_go frame- audio = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  626 b   |  17 lines

  1. on exitFrame
  2.   global gCDtrackplaying, gCD, gHowManyTracksOnAlbum
  3.   if gCD <> VOID then
  4.     if CurrentTrack(gCD) <> gCDtrackplaying then
  5.       if CurrentTrack(gCD) < gHowManyTracksOnAlbum then
  6.         set the member of sprite (gCDtrackplaying + 5) to "audiosong" & string(gCDtrackplaying) & "w"
  7.         set gCDtrackplaying to CurrentTrack(gCD)
  8.         set the member of sprite (gCDtrackplaying + 5) to "audiosong" & string(gCDtrackplaying) & "r"
  9.         if gCDtrackplaying > 0 then
  10.           set the member of sprite 1 to "audiobg" & string(gCDtrackplaying)
  11.         end if
  12.       end if
  13.     end if
  14.   end if
  15.   go(the frame)
  16. end
  17.